home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / PROCS.ZIP / FILETEXT.ICN < prev    next >
Text File  |  1992-09-28  |  670b  |  31 lines

  1. ############################################################################
  2. #
  3. #    File:     filetext.icn
  4. #
  5. #    Subject:  Procedure to read text file into a list
  6. #
  7. #    Author:   Ralph E. Griswold
  8. #
  9. #    Date:     December 26, 1991
  10. #
  11. ###########################################################################
  12. #
  13. #  filetext(f) reads the lines of f into a list and returns that list
  14. #
  15. ############################################################################
  16.  
  17. procedure filetext(f)
  18.    local input, file, text
  19.  
  20.    input := open(f) | stop("cannot open input file")
  21.  
  22.    text := []
  23.  
  24.    while put(text,read(input))
  25.  
  26.    close(input)
  27.  
  28.    return text
  29.  
  30. end
  31.